php check if session is running

47

check if session is started php -

if (session_status() == PHP_SESSION_NONE) {
    session_start();
}

Comments

Submit
0 Comments